home *** CD-ROM | disk | FTP | other *** search
/ QuickTime 2.0 Developer Kit / QuickTime 2.0 Developer Kit.iso / mac / MAC / Programming Stuff / Sample Code / Image Compression Mgr / Inside Mac ICM Code / icm.h next >
Encoding:
Text File  |  1994-12-04  |  1.1 KB  |  44 lines  |  [TEXT/MPS ]

  1. /*
  2.   File:            icm.h
  3.   Contains:        Header File for the icm C Files
  4.   Written by:    DTS and QT Engineering
  5.   Copyright:    © 1992-1994 by Apple Computer, Inc., all rights reserved.
  6.   Change History (most recent first):
  7.   <1>         12/4/94    khs        changed the format of the file to the new look and feel
  8.   To Do:
  9. */
  10.  
  11.  
  12. // HEADER FILES
  13. #include <QuickDraw.h>
  14. #include <Windows.h>
  15. #include <Memory.h>
  16. #include <Resources.h>
  17. #include <OSUtils.h>
  18. #include <Files.h>
  19. #include <StandardFile.h>
  20. #include <ImageCompression.h>
  21. #include <Fonts.h>
  22. #include <Menus.h>
  23. #include <Errors.h>
  24. #include <Packages.h>
  25. #include <TextUtils.h>
  26. #include <SegLoad.h>
  27.  
  28.  
  29. // FUNCTION PROTOTYPES
  30. void MakeMyResource(StandardFileReply fileReply,
  31.                     ImageDescriptionHandle description);
  32. void SequenceSave(void);
  33. void CheckError(OSErr error,
  34.                 Str255 displayString);
  35. void DrawFrame(const Rect* imageRect,
  36.                long frameNum);
  37. void CompressSequence(short* dfRef,
  38.                       ImageDescriptionHandle* description);
  39. void MakeMyResource(StandardFileReply fileReply,
  40.                     ImageDescriptionHandle description);
  41. void SequenceSave(void);
  42. void SequencePlay(void);
  43. PicHandle GetQTCompressedPict(CGrafPtr port);
  44.